home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
EDUCATE
/
FDPLOT.ARJ
/
MENU.BAS
< prev
next >
Wrap
BASIC Source File
|
1992-01-28
|
3KB
|
61 lines
100 REM Abri Technologies Inc., Cacapon, WV 25422, MENU PROGRAM
120 DIM PN$(50),P$(50)
125 SCREEN 0
126 ON ERROR GOTO 7000
130 I=0
1000 DATA "PLOT ( When finished A or B )","PLOTN.BAS"
1010 DATA "RE-PLOT ( press ─┘ for menu. )","T.BAS"
1015 DATA "Paired statistics - LSF","STAT.BAS"
1020 DATA "Ellipsoid Surface Area","ELLIPSA.BAS"
1030 DATA "Registration Info.","REG"
1520 DATA "EXIT"," "
1535 PRINT
1540 REM REPEAT UNTIL P$(I)="EXIT"
1550 I=I+1
1560 READ P$(I),PN$(I)
1580 IF P$(I)<>"EXIT" THEN 1540
1585 REM ENDWHILE
1586 CLS :REM CLR SCREEN
1587 PRINT" Abri Technologies, Inc., WV 25422"
1588 PRINT" SHAREWARE 'FDplot' Version 1.2 - (C) 1991":PRINT
1589 PRINT" - PLEASE REGISTER -":PRINT: PRINT" Programs available":PRINT
1590 REM
1591 FOR J=1 TO I
1592 PRINT " ";CHR$(64+J);" - ";P$(J)
1596 NEXT J
1600 PRINT
1603 PRINT " Enter choice letter _";:GOSUB 8000
1610 NC=ASC(A$)-64
1615 IF NC=I-1 THEN GOTO 9000
1620 IF NC=I THEN SYSTEM
1630 IF (NC-1)*(I-NC)<0 THEN 1600
1635 PRINT:PRINT"Loading Program . . . .":PRINT
1640 IF INSTR(PN$(NC),".COM") OR INSTR(PN$(NC),".EXE") THEN SHELL PN$(NC):CHAIN "MENU.BAS"
1645 IF INSTR(PN$(NC),".BAS") THEN CHAIN PN$(NC)
1647 SHELL "MORE < "+PN$(NC):CHAIN "MENU.BAS"
1650 END
7000 ' If program missing.
7010 PRINT: PRINT "BASIC program '"+PN$(NC)+"' not found.": PRINT
7020 GOTO 1590
8000 A$=INKEY$:IF (A$="") GOTO 8000
8010 IF (ASC(A$)> 96) THEN A$=CHR$(ASC(A$)-32)
8020 PRINT A$: RETURN
9000 CLS:
9005 PRINT" This is Shareware and not Public Domain Software. Examine this free"
9010 PRINT" for 30 days, if you find it useful please send $15 registration fee to"
9020 PRINT
9030 PRINT" Abri Technologies, Inc."
9040 PRINT" HCR 62, Box 100K"
9050 PRINT" Great Cacapon, WV 25422 USA":PRINT
9060 PRINT" You will receive all updates and corrections":PRINT
9065 PRINT" ** FDplot Plus **"
9070 PRINT" An advanced scientific Plot/LR-Statistics software package is also available."
9080 PRINT" It will plot up to 3 functions (any form - standard, parametric or polar) and"
9090 PRINT" 3 data sets (including x/y error bars) on the same graph. Functions/data can "
9100 PRINT" be saved on disc as ASCII files. The stat portion will save the data and "
9110 PRINT" LR-line on disc for plotting. The FDplot Plus enhanced package (complete with"
9120 PRINT" documentation) is only $25.":PRINT
9130 PRINT" Please use registration/order form in the REGISTER file.": PRINT
9200 PRINT: INPUT" Press ─┘ to return to menu ";C$:
9210 GOTO 1586